home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / ODF Release 3 / ODFDev / Container / Sources / Iters.cpp < prev    next >
Encoding:
Text File  |  1996-12-16  |  1.4 KB  |  47 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Iters.cpp
  4. //    Release Version:    $ ODF 3 $
  5. //
  6. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "Container.hpp"
  11.  
  12. #ifndef ITERS_H
  13. #include "Iters.h"
  14. #endif
  15.  
  16. #ifndef FWRUNTYP_H
  17. #include "FWRunTyp.h"
  18. #endif
  19.  
  20. //========================================================================================
  21. //    Runtime Information
  22. //========================================================================================
  23.  
  24. #ifdef FW_BUILD_MAC
  25. #pragma segment odfcontainer
  26. #endif
  27.  
  28. //========================================================================================
  29. //    Template instantiations
  30. //========================================================================================
  31.  
  32. #include "FWTRCtCl.tpp"
  33.  
  34. FW_DEFINE_AUTO_TEMPLATE(FW_TRefCountedCollection, CProxy)
  35. FW_DEFINE_AUTO_TEMPLATE(FW_TRefCountedCollectionIterator, CProxy)
  36.  
  37. #if FW_USE_TEMPLATE_PRAGMAS
  38. #pragma template_access public
  39. #pragma template FW_TRefCountedCollection<CProxy>
  40. #pragma template FW_TRefCountedCollectionIterator<CProxy>
  41. #endif
  42.  
  43. #if FW_ANSI_TEMPLATE_INSTANTIATION
  44. template class FW_TRefCountedCollection<CProxy>;
  45. template class FW_TRefCountedCollectionIterator<CProxy>;
  46. #endif
  47.